#In REPL

import socket

def resolve(host):
    return socket.gethostbyname(host)

resolve

resolve('sixty-north.com')



